home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Explore Yellowstone
/
Explore Yellowstone (1997)(The Learning Company)[PC-Mac].iso
/
mac
/
ROSTER.DIR
/
00017_Script_fr stationWrite1
< prev
next >
Wrap
Text File
|
1996-02-29
|
853b
|
31 lines
on exitFrame
global ThisUser
saveUserList
GetRoster
-- establish the next free line for typing straight away
put the number of lines in field "MainList" into lineCount -- vs "display"
repeat with x = 1 to lineCount
if line x of field "display" contains "-----" then
exit repeat
else if x = lineCount then
put x into ThisUser -- ?need to adjust the variable for extra pass
addNewUser
loadMainList
GetRoster
end if
end repeat
if ThisUser > 0 then
hilite char 1 to 30 of line ThisUser of field "Display"
put char 1 to 30 of line ThisUser of field "Display" into TextString
put TextString into field "EnterText"
hilite char 1 to 30 of field "EnterText"
set the KeyDownScript to "CheckKey1"
end if
go to "stationLoop1"
end